Skip to main content
Version: 5.3.0.0

Configuring Base Group Settings

Configuration of Base-Groups in security_base_groups.xml​

The security_base_groups.xml file enables the addition of custom groups with specific roles. To create a new group, you need to add a new <group> tag within the <baseGroups> tag with the following attributes:

TagDescription
groupname: The name of the OAuth group. description: A human-readable text that describes the purpose of this group.
<hasRoles/>Contains a comma-separated list of all roles assigned to this group. Using * assigns all configured roles.
<isMemberOf/>Contains a comma-separated list of all base groups assigned to this group. Using * assigns all configured groups.

Example​

<group name="MonitoringDetails">

<isMemberOf>

Logging

ProcessMonitoring

</isMemberOf>

<hasRoles>list,Scenario.SuperUser</hasRoles>

</group>